Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@types/semver
Advanced tools
The @types/semver package provides TypeScript type definitions for the semver package, which is a utility for handling semantic versions. It allows developers to parse, compare, and manipulate semantic versions in TypeScript projects with type safety.
Parsing a version
This feature allows you to parse a semantic version string and access its components, such as the major, minor, and patch versions.
"import semver from 'semver';\nconst version = semver.parse('1.2.3');\nconsole.log(version.major); // 1"
Comparing versions
This feature enables you to compare two semantic version strings and determine their order.
"import semver from 'semver';\nconst result = semver.compare('1.2.3', '1.2.4');\nconsole.log(result); // -1"
Satisfying ranges
This functionality allows you to check if a semantic version satisfies a given version range.
"import semver from 'semver';\nconst satisfied = semver.satisfies('1.2.3', '^1.0.0');\nconsole.log(satisfied); // true"
This package provides functionality for comparing version numbers. While it offers similar version comparison capabilities, it lacks the broader feature set of semver, such as range checking and version parsing.
A simple package for comparing version strings. It is more lightweight than semver but does not support semantic versioning's pre-release and build metadata.
npm install --save @types/semver
This package contains type definitions for semver (https://github.com/npm/node-semver).
Files were exported from https://www.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/semver
Additional Details
These definitions were written by Bart van der Schoor https://github.com/Bartvds, BendingBender https://github.com/BendingBender, Lucian Buzzo https://github.com/LucianBuzzo.
FAQs
TypeScript definitions for semver
We found that @types/semver demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.